home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 3 / ct-rom iiib.zip / ct-rom iiib / OS2 / GRAFISCH / SSAVER13 / SAMPLE.ZIP / sample13.txt < prev    next >
Text File  |  1994-06-24  |  3KB  |  83 lines

  1. Hi ScreenSaver module developer!
  2. ================================
  3.  
  4. This is version 1.3 of the sample ScreenSaver module.
  5.  
  6.  
  7. Changes version 1.2 - > 1.3
  8. ---------------------------
  9. no changes.
  10.  
  11.  
  12. Changes version 1.1 - > 1.2
  13. ---------------------------
  14.  
  15. There is a problem with OS/2 2.11 (to me it seems to be an OS/2 bug) which
  16. causes ScreenSaver to exit whenever a version 1.1 module ends. This problem
  17. is corrected in version 1.2. Unfortunately the problem had to be corrected in
  18. the module source code. The problem only occurs when "low priority" is enabled.
  19. (To those who are interested: the DosKillThread call kills thread 1 (the main
  20. thread) instead of the priority-controller-thread. Seems to be a bad bug in
  21. OS/2 2.11).
  22. The ScreenSaver program now checks if we run on OS/2 2.11 and if the modules
  23. is a version 1.1 module. If this is true, it runs the module with high
  24. priority although low priority may be selected in the options dialog.
  25. Animation speed setting added.
  26. Random seed now per thread.
  27. *.DEF file changed
  28.  
  29.  
  30. Changes version 1.0 - > 1.1
  31. ---------------------------
  32.  
  33. There are some minor enhancements to the original code.
  34. There is limited support for compiling with Borland C++ now. See below for
  35. more info on that.
  36. The old (version 1.0) code STILL WORKS. The code that was added since
  37. version 1.0 should solve the idle-priority problem that prevented the saver
  38. modules from doing their action when CPU usage of other programs was 100%.
  39. Most of the changes are to avoid compiler warnings from Borland C++.
  40.  
  41. It should not be too much work to incorporate the changes in SAMPLE.C if
  42. you have written code for version 1.0.
  43. I suggest you cut your code and paste it into the new SAMPLE.C. An utility
  44. like "Visual Compare" (all/diskutil/vc132.zip on ftp.cdrom.com) might be very
  45. useful for that.
  46.  
  47.  
  48. Compiling with Borland C++
  49. --------------------------
  50.  
  51. Because of initialization problems with the Borland C runtime library (RTL),
  52. you MUST NOT use ANY RTL-functions (malloc, free, strcpy, _beginthread, srand,
  53. rand, fopen, open, printf etc.).
  54. In the file MINIRTL.C you can find some useful C library functions as source
  55. code. If you link your module with MINIRTL.OBJ, you can use those
  56. functions in your module. DO NOT use any other rtl functions. DO NOT link
  57. your module with one of the Borland libraries (C2*.LIB) (OS2.LIB is ok).
  58. DO NOT link with the startup code supplied by Borland (C02*.OBJ). Use the
  59. startup code BCCDLL0.ASM instead.
  60.  
  61. This seems rather complicated, but in fact all you have to do is uncomment
  62. the "USE_BCC=1" line in SAMPLE.MAK and type "MAKE -F SAMPLE.MAK".
  63.  
  64.  
  65. ------------------------------------------------------
  66.  
  67. If you are going to write saver modules, please get in contact with me.
  68.  
  69. If you already have developed a module, please drop me a line where I can get
  70. it from. Better, uuencode the module and mail it to me.
  71.  
  72. If you have any questions, just contact me via e-mail.
  73.  
  74. Greetings
  75.  
  76. Siegfried Hanisch
  77. Internet e-mail: hanisch@swwwnext.tuwien.ac.at
  78.  
  79. My e-mail address is going to change in a few months. If you can't reach me
  80. under the above address, please send a short e-mail to
  81.   p.wansch@ieee.org
  82. and ask him for my new address.
  83.